Cancelled
Push — release/2.1.0 ( 9888ea )
by Kevin Van
09:55 queued 09:52
created

Sponsor.render   A

Complexity

Conditions 1

Size

Total Lines 4
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 4
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
import React, { Component } from "react"
2
3
import { SingleImageCard } from "../components/cards"
4
5
class Sponsor extends Component {
6
  render() {
7
    const { localFile, uri = null } = this.props
8
9
    return <SingleImageCard localFile={localFile} link={uri} />
10
  }
11
}
12
13
export default Sponsor
14